﻿/*电脑导航*/
.navbg {
    background: #02468d;
}
.nav-ul {
    display: flex;
    height: 60px;
}
.nav-ul li {
    height: 60px;
    line-height: 60px;
    position: relative;
}
.nav-ul li.active{
    background: #f4a129;
}
.nav-ul li>a {
    font-size: 16px;
    padding: 0 38px;
    color: #fff;
    display: block;
    background-color: transparent;
    transition: all 0.3s;
}
.nav-ul li:hover>a {
    background-color: #f4a129;
    color: #fff;
}
.navToggle {
    margin-top: 25px;
}
.nav-sub {
    position: absolute;
    top: 60px;
    left: 0px;
    z-index: 66;
    display: none;
    width: 200px;
    box-sizing: border-box;
}
.nav-sub dl dd a {
    display: block;
    line-height: 40px;
    font-size: 16px;
    color: #333;
    background-color: #fff;
    transition: all .3s;
    padding: 0 15px;
}
.nav-sub dl dd:hover a {
    background-color: #02468d;
    color: #FFF;
}
@media(max-width:1599px) {
    .nav-ul li>a {
        padding: 0 32px;
    }
}
@media(max-width:1400px) {
    .nav-ul li>a {
        padding: 0 26px;
    }
}
@media(max-width:1200px) {
    .nav-ul li>a {
        padding: 0 15px;
        font-size: 15px;
    }
    .header-right {
        display: none;
    }
    .nav-sub dl dd a {
        font-size: 14px;
    }
}
@media(max-width:991px) {
    header {
        height: 70px;
    }
    .header-center {
        display: none;
    }
    .header-right {
        display: none;
    }
    .welcome {
        display: none;
    }
    .navbg {
        display: none;
    }
    .logo {
        width: 200px;
        margin: 10px 0;
    }
}
/*手机导航*/
#navToggle {
    position: relative;
    width: 30px;
    height: 20px;
    display: none;
    float: right;
}
#navToggle .line {
    background: #02468d;
    border-radius: 1px;
    display: block;
    height: 3px;
    top: 0;
    left: 0;
    transition: all 0.3s ease;
    transform-origin: center center;
    width: 100%;
    position: absolute;
}
#navToggle .line1 {
    top: 0;
}
#navToggle .line2 {
    top: 50%;
    margin-top: -1px;
}
#navToggle .line3 {
    top: auto;
    bottom: 0;
}
#navToggle.active .line {
    top: 50%;
    bottom: auto;
    margin-top: -1px;
}
#navToggle.active .line1 {
    transform: rotate(45deg);
}
#navToggle.active .line2 {
    opacity: 0;
    filter: alpha(opacity=0);
}
#navToggle.active .line3 {
    transform: rotate(-45deg);
}
.mobileMenu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100% - 70px);
    background-color: #fff;
    overflow-y: auto;
    z-index: 400;
    border-top: 1px solid #dcdcdc;
}
.mobileMenu ul {
    background: #fff;
}
.mobileMenu ul li {
    transform: translate3d(0, 10px, 0);
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}
.mobileMenu.h-show ul li {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}
.menu-item {
    display: flex;
    flex-direction: row;
    height: 100px;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    border-bottom: 1px solid #dcdcdc;
    position: relative;
    transition: all .5s;
}
.menu-item i {
    font-size: 30px;
    display: block;
    font-style: normal;
}
.menu-item a {
    font-size: 30px;
    color: #000;
    padding-left: 30px;
}
.menu-item:hover i,
.menu-item:hover a {
    color: #02468d;
}
.menu li.on .menu-item i {
    color: #02468d;
}
.menu_dl {
    display: none;
    padding-left: 98px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dcdcdc;
}
.menu_dl dd a {
    font-size: 24px;
    color: #333;
    line-height: 64px;
}
.menu_dl dd a:hover {
    color: #0f256e;
}
.ovh-f {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    overflow: hidden;
}
.menu-itemtit {
    display: flex;
}
.Mobile-Foot {
    display: none;
}
@media(max-width: 991px) {
    #navToggle {
        display: block;
    }
    .menu-arrow {
        font-size: 30px !important;
        position: absolute;
        right: 15px;
        transform: rotate(-0deg);
        transition: all 0.4s;
    }
    .menu_li.on .menu-arrow {
        transform: rotate(90deg);
        color: #0f256e;
    }
}
@media(max-width: 767px) {
    .menu-item {
        padding-left: 20px;
        height: 70px;
    }
    .menu-item i {
        font-size: 24px;
        margin-top: 0;
    }
    .menu-item a {
        font-size: 24px;
        padding-left: 20px;
    }
    #navToggle {
        margin-right: 0px;
    }
    .menu_dl {
        padding-left: 65px;
    }
    .menu_dl dd a {
        font-size: 18px;
        line-height: 36px;
    }
    .Mobile-Foot {
        position: fixed;
        display: block;
        left: 0;
        bottom: 0;
        /*background-color: rgba(0,0,0,0.6);*/
        background: #222;
        width: 100%;
        border-top: 3px solid #02468d;
        z-index: 99999;
    }
    footer {
        padding-bottom: 45px;
    }
    .Mobile-Foot .container {
        padding: 0;
    }
    .Mobile-Foot ul {
        width: 100%;
        overflow: hidden;
        padding: 3px 0;
    }
    .Mobile-Foot ul li {
        float: left;
        margin: 0 auto;
        width: calc(100%/4) !important;
        padding: 0.2rem 0;
    }
    .Mobile-Foot ul li span {
        color: #FFF;
        font-size: 16px;
        text-align: center;
        display: block;
    }
    .Mobile-Foot ul li i {
        font-size: 40px;
        display: block;
        text-align: center;
        height: 48px;
        margin-top: -10px;
    }
    .Mobile-Foot ul li a {
        color: #FFF;
        display: block;
    }
}
@media(max-width: 599px) {
    .menu-item i {
        font-size: 40px;
    }
    .menu-item a {
        font-size: 18px;
        padding-left: 15px;
        line-height: 57px;
    }
    .menu_dl {
        padding-left: 60px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .menu_dl dd a {
        font-size: 16px;
        line-height: 32px;
    }
    .menu-arrow {
        font-size: 22px;
    }
}
/*电子地图*/
.map {
    overflow: hidden;
    clear: both;
    padding: 15px 0;
}
.map .title {
    font-size: 22px;
    line-height: 34px;
}
/*搜索查询*/
.search {
    float: left;
}
.search input {
    width: 200px;
    border: 1px solid #1a3784;
    border-radius: 8px;
    height: 32px;
    line-height: 32px;
    padding-left: 10px;
}
.search i {
    color: #1a3784;
    font-size: 16px;
    margin-left: -26px;
}
/*pages分页*/
.List_page {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-bottom:30px;
}
.List_page li:hover a {
    color: #fff;
}
.List_page li:hover {
    background: #02468d;
    color: #fff;
}
.List_page li.thisclass {
    background: #02468d;
    color: #fff;
}
.List_page li {
    margin: 0 10px;
    display: inline-block;
    vertical-align: middle;
    color: #666;
    font-size: 17px;
    height: 35px;
    line-height: 35px;
    padding: 0 10px;
    border: 1px solid #e6f2ff;
}
.List_page span a:hover {
    color: #02468d;
}
.List_page a, .List_page span.page-status {
    margin: 0 10px;
    display: inline-block;
    vertical-align: middle;
    color: #666;
    font-size: 17px;
    height: 35px;
    line-height: 35px;
    padding: 0 15px;
    border: 1px solid #e6f2ff;
    margin-bottom: 15px;
}
.news_pre {
    padding: 10px 15px;
    width: 40%;
    border: 1px solid #e6f2ff;
    float: left;
    background: #e6f2ff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}
.Details-conentbox .news_pre:last-child {
    float: right;
}
/* 自定义宽度 */
.inside-container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 768px) {
    .inside-container {
        width: 750px;
    }
    .List_page{
        display: block !important;
    }
    .List_page li{
        margin-bottom: 10px;
    }
}
@media (max-width: 768px) {
    .List_page{
        display: block !important;
    }
    .List_page li{
        margin-bottom: 10px;
    }
}
@media (min-width: 992px) {
    .inside-container {
        width: 970px;
    }
}
@media (min-width: 1200px) {
    .inside-container {
        width: 1180px;
        padding-right: 0px;
        padding-left: 0px;
    }
}
@media (min-width: 1300px) {
    .inside-container {
        width: 1280px;
    }
}
@media (min-width: 1400px) {
    .inside-container {
        width: 1400px;
    }
}
@media screen and (min-width:1400px) and (max-width:1499px) {
    .inside-container {
        padding-left: 15px;
        padding-right: 15px;
    }
}
.page-num-current {
	background: #666;
	color: #fff !important;
}

/*tags2*/
.tags_list{}
.tags_list ul{}
.tags_list li{display:inline-block;}
.tags_list li a{margin: 3px 5px 3px 0;
position: relative;
display: inline-block;
padding: 0px 10px;
font-size: 14px !important;
line-height: 26px;
vertical-align: top;
border-radius: 4px;
color: #0084ff;
background: rgba(0,132,255,.1);}
.tags_list li a:hover{
background-color: #3385ff;
background-image: -webkit-gradient(linear, left top, right top, from(#006eff), to(#13adff));
background-image: -webkit-linear-gradient(left, #006eff, #13adff);
background-image: -o-linear-gradient(left, #006eff 0, #13adff 100%);
background-image: linear-gradient(90deg, #006eff, #13adff);
-webkit-box-shadow: 0 5px 10px 0 rgba(16, 110, 253, .3);
box-shadow: 0 5px 10px 0 rgba(16, 110, 253, .3);
color: #fff;
}

.tag_list{
		margin-top:20px ;
		margin-bottom: 20px;
	}
.tag_list a{
	display: inline-block;
	margin: 0 10px 5px 0;
	padding: 4px 15px;
	font-size: 14px;
	line-height: 1.2;
	color: #5a5a5a;
	border: 1px solid #ccc;
	border-radius: 3px;
}
.tag_list a:hover{
	background: rgb(67,112,245);
	color: #fff;
}

.news ul li{
	margin-bottom: 0;
}
.owl-next span,.owl-prev span{
	font-size: 60px;
}
.owl-nav{
	position: relative;
}
.owl-prev span{
	position: absolute;
	left: -40px;
	top:-162.5px;
}
.owl-next span{
	position: absolute;
	right: -40px;
	top:-162.5px;
}
.case_xmmc_1{
	font-weight: bold;
}
.case_xmmc_2{
	font-weight: bold;
	color: red;
}
.case_xmmc_2 a{
	font-weight: bold;
	color: red;
}
.slideBox {
	width: 68%;
	height: auto;
	/*overflow: hidden;*/
	position: relative;
	border: 1px solid #ddd;
	margin: 0 auto;
}
.slideBox .hd {
	height: 15px;
	overflow: hidden;
	position: absolute;
	right: 5px;
	bottom: 5px;
	z-index: 1;
}
.slideBox .hd ul {
	overflow: hidden;
	zoom: 1;
	float: left;
}
.slideBox .hd ul li {
	float: left;
	margin-right: 2px;
	width: 15px;
	height: 15px;
	line-height: 14px;
	text-align: center;
	background: #fff;
	cursor: pointer;
}
.slideBox .hd ul li.on {
	background: #f00;
	color: #fff;
}
.slideBox .bd {
	position: relative;
	height: 100%;
	z-index: 0;
}
.slideBox .bd li {
	zoom: 1;
	vertical-align: middle;
}
.slideBox .bd img {
	width: auto;
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}
/* 下面是前/后按钮代码，如果不需要删除即可 */
.slideBox .prev,
.slideBox .next {
	position: absolute;
	left: -10%;
	top: 50%;
	margin-top: -25px;
	display: block;
	width: 32px;
	height: 40px;
	background:#000 url(/static/images/slider-arrow.png) -110px 5px no-repeat;
	filter: alpha(opacity=50);
	opacity: 0.5;
}
.slideBox .next {
	left: auto;
	right: -10%;
	background-position: 8px 5px;
}
.slideBox .prev:hover,
.slideBox .next:hover {
	filter: alpha(opacity=100);
	opacity: 1;
}
.slideBox .prevStop {
	display: none;
}
.slideBox .nextStop {
	display: none;
}

.xwtj {
	font-size:22px;
	color:#02468d;
	margin-bottom:15px;
	}
.xwtj::after {
	content: "";
	position: absolute;
	display: block;
	width: 100px;
	height: 3px;
	background: #fd8507;
}
.xwtj h3{
	background: #02468d;
	color: #fff;
	padding-left: 10px;
	margin-bottom: 5px;
	padding: 5px 5px 5px 10px;
}
.hot_pro{
	width: 100%;
	margin: 30px 0;
}
.pic ul li .list-img,.pic ul li .list-img img{
	height: auto;
}
@media(min-width: 992px){
	.col-md-4{
		width:25%;
	}
}
td{
	border: 1px solid ;
	text-align: center;
}

.left_new_list-aaa {
	height: 414px;
	overflow: hidden;
}
.left_new_list-aaa .lunbo{
}
.left_new_list-aaa dl dt{
	width: 100%;
	height:auto;
}
.left_new_list-aaa dl dd{
	width: 100%;
}
.left_new_list-aaa dl dd p{
	color: #fff;
	background: #000;
	text-align: center;
}
.pic ul li .list-img{
}
.leftpro_tj{
	margin-bottom:0;
}

.row{
	margin-right: 0;
}
.img_s_box{
	position: relative;
}
.img_s_box .pre{
	position: absolute;
	left: -25px;
}
.img_s_box .pre,.img_s_box .next{
	top: 32px;
	cursor: pointer;
}
.img_s_box .pre img,.img_s_box .next img{
	width: 30px;
}
.img_s_box .next{
	position: absolute;
	right:  -25px;
	z-index: 999;
}
@media screen and (min-width:767px){
	.img_s_box .pre{
		left: -32px;
	}
	.img_s_box .next{
		right:-32px;
	}
}
.img_s_box .next img{
	transform:rotate(180deg);
}
.img_b img{
	display: none;
	width:100%;
}
.img_b img:nth-child(1){
	display: block;
}
.img_s_hidden{
	overflow: hidden;
}
.img_s{
	display: flex;
	flex-wrap: nowrap;
	transition: all .3s;
	position: relative;
}
.img_s img{
	opacity: .5;
	width:90px;
	cursor: pointer;
	transition: all .2s;
	padding: 0 2px;
}
.img_s img:nth-child(1){
	opacity: 1;
}
.product_bottom{
	overflow: hidden;
	display: flex;
	justify-content: space-around
}
.product_bottom_list{
	float: left;
	width: 44% !important;
}
.xwtj {
font-size:22px;
color:#02468d;
margin-bottom:15px;
padding-left:15px;
}
.xwtj::after {
	content: "";
	position: absolute;
	display: block;
	width: 100px;
	height: 3px;
	background: #fd8507;
}
.product_img img{
	height: 120px;
	width: 120px;
	display: block;
	margin: 0 auto;
}
.product_bottom_list span{
	display: block;
	text-align: center;
	margin: 10px 0;
}
.xwtj h3{
	background: #02468d;
	color: #fff;
	padding-left: 10px;
	margin-bottom: 5px;
	padding: 5px 5px 5px 10px;
}
.news_list{
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 20px 0;
}
.news_con{
	width: 48%;
	float: left;
	display: flex;
	justify-content: space-between;
	border-bottom:1px dashed #aaa;
}
.news_con .title{
	font-size: 18px;
	color: #00000095;
	margin: 7px 0;
}
.xwtj {
font-size:22px;
color:#02468d;
margin-bottom:15px;
/*padding-left:15px;*/
}
.xwtj::after {
	content: "";
	position: absolute;
	display: block;
	width: 100px;
	height: 3px;
	background: #fd8507;
}
.xwtj h3{
	background: #02468d;
	color: #fff;
	padding-left: 10px;
	margin-bottom: 5px;
	padding: 5px 5px 5px 10px;
}
.news_con .date{
	font-size: 16px;
}
@media screen and (max-width:800px) {
	.product_bottom_list{
		width: 100%;
	}
	.product_bottom{
		flex-wrap: wrap;
	}
	.news_con{
		width: 100%;
	}
	.news_con .date{display:none;}
}
.left_new_list-aaa {
	height: 414px;
	overflow: hidden;
}
.left_new_list-aaa .lunbo{
}
.left_new_list-aaa dl dt{
	width: 100%;
	height:auto;
}
.left_new_list-aaa dl dd{
	width: 100%;
}
.left_new_list-aaa dl dd p{
	color: #fff;
	background: #000;
	text-align: center;
}


.product_bottom{
	overflow: hidden;
	display: flex;
	justify-content: space-between;
}
.product_bottom_list{
	float: left;
	width: 24%;
	
}
.xwtj {
font-size:22px;
color:#02468d;
margin-bottom:15px;
padding-left:15px;
}
.xwtj::after {
	content: "";
	position: absolute;
	display: block;
	width: 100px;
	height: 3px;
	background: #fd8507;
}
.product_img img{
	height: 120px;
	width: auto;
	display: block;
	margin: 0 auto;
}
.product_bottom_list span{
	display: block;
	text-align: center;
	margin: 10px 0;
}
.xwtj h3{
	background: #02468d;
	color: #fff;
	padding-left: 10px;
	margin-bottom: 5px;
	padding: 5px 5px 5px 10px;
}
@media screen and (max-width:800px) {
	.product_bottom_list{
		width: 43% !important;
	}
	.product_bottom{
		flex-wrap: wrap;
	}
	.Details-conent{
		text-indent: 33px;
	}
	.news ul li .news-img,.news ul li .more{display:none;}
	.row{
		margin-right: 0 !important;
	}
}

.col-md-3{
	float:right;
}
.left_qabox{
	display: none;
}

.tags_right{
	margin: 20px 0;
	box-shadow: 0 0 10px 0#aaaaaa80;
}
.tags_right_list{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 10px;
}
.tags_right a{
	width: 32%;
	float:  left;
	border: 1px solid #aaaaaa80;
	text-align: center;
	display: inline-block;
	margin: 5px 0;
	padding: 5px 0;
	font-size: 14px;
	line-height: 1.2;
	color: #5a5a5a;
	border: 1px solid #efefef;
	border-radius: 3px;
}
.tags_right a:hover{
	background: rgb(67,112,245);
	color: #fff;
}
.Details-conent p img{
}